home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-08-14 | 891 b | 57 lines | [04] ASCII Text (0x0000) |
- Unit ToolLib;
-
- Interface
-
- { Spinning Cursor stuff }
-
- Procedure InitCursorCtl(delaycount : longint);
-
- Procedure RotateCursor(counter : longint);
-
- Procedure SpinCursor(increment : integer);
-
- Procedure Show_Cursor;
-
- Procedure Hide_Cursor;
-
-
- { Error Message Manager stuff}
-
- Procedure InitErrMgr(toolErrFilename, sysErrFilename : Str255; showToolErrNbrs : boolean);
-
- Procedure CloseErrMgr;
-
- Procedure GetSysErrText(errNbr : integer; var errMsg : Str255);
-
-
- { Miscellaneous stuff}
-
- Function pause : boolean;
-
- Function wait : boolean;
-
-
- Implementation
-
- Procedure InitCursorCtl; External;
-
- Procedure RotateCursor; External;
-
- Procedure SpinCursor; External;
-
- Procedure Show_Cursor; External;
-
- Procedure Hide_Cursor; External;
-
- Procedure InitErrMgr; External;
-
- Procedure CloseErrMgr; External;
-
- Procedure GetSysErrText; External;
-
- Function pause; External;
-
- Function wait; External;
-
- end.
-